home *** CD-ROM | disk | FTP | other *** search
- #include "PICSDialogs.h"
- #include "DialogUtils.h"
- #include "KeyUtils.h"
-
- Boolean CheckValidNumeral(DialogPtr theDlog, short theItem, long *result) {
- Str31 dlogStr;
-
- GetIText(GetDItemHdl(theDlog, theItem), dlogStr);
- if (StrNumberOnly(dlogStr, false, false)) {
- StringToNum(dlogStr, result);
- }
- else {
- SelIText(theDlog, theItem, 0, 32767);
- SysBeep(10);
- return(false);
- }
-
- return(true);
- } // END CheckValidNumeral